Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

632707 Views

Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/43 - Getting Started with APIs

assets/ cody/swapnilsparsh/30DaysOfJavaScript/43 - Getting Started with APIs/assets/
1 Items
  • favicon.png
  • app.js cody/swapnilsparsh/30DaysOfJavaScript/43 - Getting Started with APIs/app.js
    167 Views
    0 Comments
    const cat_result = document.getElementById("gallery");
    const errorData = document.getElementById("errorBox");


    btn_generate.addEventListener("click", function () {
    const nums = document.getElementById("inp-box").value;

    errorData.innerHTML = "";
    styles.css cody/swapnilsparsh/30DaysOfJavaScript/43 - Getting Started with APIs/styles.css
    113 Views
    0 Comments
    @import url('https://fonts.googleapis.com/css?family=Open+Sans&display=swap');

    :root {
    --error-color: #dc3545;
    --success-color: #28a745;
    --warning-color: #ffc107;
    }

    index.html cody/swapnilsparsh/30DaysOfJavaScript/43 - Getting Started with APIs/index.html
    314 Views
    0 Comments
    <!DOCTYPE html>
    <html lang="en">

    <head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="shortcut icon" href="assets/favicon.png" type="image/x-icon" />